home *** CD-ROM | disk | FTP | other *** search
Wrap
<?xml version="1.0" encoding="utf-8"?> <html><head><title>RGB Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03010305"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css"> p.P1{ } p.P2{ } span.T1{ font-weight:bold;} </style></head><body> <help:to-be-embedded Eid="rgb" xmlns:help="http://openoffice.org/2000/help"><a name="rgb"/> <p class="Head1"><help:link Id="66436">RGB Function [Runtime]</help:link></p> <p class="Paragraph">Returns a <help:popup Id="66475" Eid="farbcodes">long integer color value</help:popup> consisting of red, green, and blue components.</p> </help:to-be-embedded> <p class="Paragraph"><span class="T1">Syntax</span>:</p> <p class="Paragraph">RGB (Red, Green, Blue) <help:key-word value="RGB" tag="kw66436_1" xmlns:help="http://openoffice.org/2000/help"/></p> <p class="Paragraph"><span class="T1">Return value</span>:</p> <p class="Paragraph">Long</p> <p class="Paragraph"><span class="T1">Parameter</span>:</p> <p class="Paragraph">Red: Any integer expression that represents the red component (0-255) of the composite color.</p> <p class="Paragraph">Green: Any integer expression that represents the green component (0-255) of the composite color.</p> <p class="Paragraph">Blue: Any integer expression that represents the blue component (0-255) of the composite color.</p> <p class="P2">Example:</p> <p class="PropText">Sub ExampleColor</p> <p class="PropText">Dim lVar As Long</p> <p class="PropText">lVar = rgb(128,0,200)</p> <p class="PropText">msgbox "The color " & lVar & " consists of:" <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>& Chr(13) &_</p> <p class="PropText">"red= " & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>red(lVar) & Chr(13)&_</p> <p class="PropText">"green= " & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>green(lVar) & Chr(13)&_</p> <p class="PropText">"blue= " & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>blue(lVar) & Chr(13) , 64,"colors"</p> <p class="PropText">end sub</p> <p class="PropText"/> </body></html>